home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / fd / creat.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  174b  |  17 lines

  1.  
  2. /*
  3.  *  CREAT.C
  4.  *
  5.  *  creat(name, prot)   (prot ignored)
  6.  */
  7.  
  8. #include <fcntl.h>
  9.  
  10. int
  11. creat(name)
  12. char *name;
  13. {
  14.     return(open(name, O_CREAT | O_TRUNC | O_RDWR, 0666));
  15. }
  16.  
  17.